home *** CD-ROM | disk | FTP | other *** search
/ C & C++ Multimedia Cyber Classroom / C and C++ Multimedia Cyber Classroom (Prentice Hall) (1998).iso / cpphtp2 / code.jar / code / ch11 / fig11_23.txt < prev    next >
Text File  |  1998-02-27  |  329b  |  13 lines

  1. 1   // Fig. 11.23: fig11_23.cpp 
  2. 2   // Printing an integer with internal spacing and
  3. 3   // forcing the plus sign.
  4. 4   #include <iostream.h>
  5. 5   #include <iomanip.h>
  6. 6   
  7. 7   int main()
  8. 8   {
  9. 9      cout << setiosflags( ios::internal | ios::showpos )
  10. 10          << setw( 10 ) << 123 << endl;
  11. 11     return 0;
  12. 12  }
  13.